home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 37 / IOPROG_37.ISO / SOFT / Multilizer.exe / disk1 / data1.cab / data1 / [Group9]VCL Source Standard / ivpasswd.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1999-08-12  |  802 b   |  43 lines

  1. unit IvPassWD;
  2.  
  3. interface
  4.  
  5. uses
  6. {$IFDEF WIN32}
  7.   Windows,
  8. {$ELSE}
  9.   WinTypes, WinProcs,
  10. {$ENDIF}
  11.   Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls,
  12.   IvDictio, IvMulti;
  13.  
  14. type
  15.   TIvPasswordDialog = class(TForm)
  16.     GroupBox: TGroupBox;
  17.     Label1: TLabel;
  18.     Label2: TLabel;
  19.     UserName: TEdit;
  20.     Password: TEdit;
  21.     OKButton: TButton;
  22.     CancelButton: TButton;
  23.     HelpButton: TButton;
  24.     SavePassword: TCheckBox;
  25.     IvTranslator1: TIvTranslator;
  26.     procedure HelpButtonClick(Sender: TObject);
  27.   private
  28.     { Private declarations }
  29.   public
  30.     { Public declarations }
  31.   end;
  32.  
  33. implementation
  34.  
  35. {$R *.DFM}
  36.  
  37. procedure TIvPasswordDialog.HelpButtonClick(Sender: TObject);
  38. begin
  39.   Application.HelpContext(HelpContext);
  40. end;
  41.  
  42. end.
  43.